home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / Net_HostToNetInt.c < prev    next >
C/C++ Source or Header  |  1989-01-27  |  1KB  |  64 lines

  1. /* 
  2.  * Net_HostToNetInt.c --
  3.  *
  4.  *    Convert an integer from host to network byte ordering.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_HostToNetInt.c,v 1.2 89/01/27 16:36:42 mendel Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21.  
  22. #include "machparam.h"
  23.  
  24. /* 
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * Net_HostToNetInt --
  28.  *
  29.  *    Convert an integer in host byte order to an integer in 
  30.  *    net byte order.
  31.  *
  32.  * Results:
  33.  *    The integer in net byte order.
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. unsigned int 
  42. Net_HostToNetInt(longInt)
  43.     unsigned int longInt;    /* 32bit integer in host byte order. */
  44. {
  45. #if BYTE_ORDER == LITTLE_ENDIAN
  46.  
  47.     union {
  48.         unsigned int l;
  49.         unsigned char  c[4];
  50.     } in, out;
  51.  
  52.     in.l = longInt;
  53.     out.c[0] = in.c[3];
  54.     out.c[1] = in.c[2];
  55.     out.c[2] = in.c[1];
  56.     out.c[3] = in.c[0];
  57.  
  58.         return (out.l);
  59. #else
  60.     return(longInt);
  61. #endif
  62. }
  63.  
  64.